home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_100 / 111_01 / usq.h < prev    next >
Text File  |  1985-08-19  |  512b  |  20 lines

  1. #define LARGE 30000
  2.  
  3. /* Decoding tree */
  4. struct {
  5.     int children[2];    /* left, right */
  6. } dnode[NUMVALS - 1];
  7.  
  8. int bpos;    /* last bit position read */
  9. int curin;    /* last byte value read */
  10.  
  11. /* Variables associated with repetition decoding */
  12. int repct;    /*Number of times to retirn value*/
  13. int value;    /*current byte value or EOF */
  14.  
  15. /* Original file name without drive */
  16. char origname[14];
  17. */
  18. r of bits in code */
  19. unsigned code[NUMVALS];        /* code itself, right adjusted */
  20. unsigned tcode;            /*